Author: sandervanderburg
Date: Mon Oct 31 11:46:11 2011
New Revision: 30141
URL: https://nixos.org/websvn/nix/?rev=30141&sc=1
Log:
Do some release management + added MIT license
Added:
disnix/examples/WebServicesExample.NET/trunk/LICENSE.txt
disnix/examples/WebServicesExample.NET/trunk/release.nix
disnix/examples/WebServicesExample.NET/trunk/version
Added: disnix/examples/WebServicesExample.NET/trunk/LICENSE.txt
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ disnix/examples/WebServicesExample.NET/trunk/LICENSE.txt Mon Oct 31
11:46:11 2011 (r30141)
@@ -0,0 +1,19 @@
+Copyright (c) 2010 Sander van der Burg
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
Added: disnix/examples/WebServicesExample.NET/trunk/release.nix
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ disnix/examples/WebServicesExample.NET/trunk/release.nix Mon Oct 31
11:46:11 2011 (r30141)
@@ -0,0 +1,26 @@
+{ nixpkgs ? <nixpkgs>
+, nixos ? <nixos>
+}:
+
+let
+ jobs = rec {
+ tarball =
+ { WebServicesExampleNET ? {outPath = ./.; rev = 1234;}
+ , officialRelease ? false}:
+
+ let
+ pkgs = import nixpkgs {};
+
+ disnixos = import "${pkgs.disnixos}/share/disnixos/testing.nix" {
+ inherit nixpkgs nixos;
+ };
+ in
+ disnixos.sourceTarball {
+ name = "WebServicesExample.NET";
+ version = builtins.readFile ./version;
+ src = WebServicesExampleNET;
+ inherit officialRelease;
+ };
+ };
+in
+jobs
Added: disnix/examples/WebServicesExample.NET/trunk/version
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ disnix/examples/WebServicesExample.NET/trunk/version Mon Oct 31
11:46:11 2011 (r30141)
@@ -0,0 +1 @@
+0.1
\ No newline at end of file
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits